Does FR support unicode and how have I to use it
dear together,
I've implemented FR in an application, which support different languages as english, german... chinese... russian and so on. Now I have to support chinese.... also inside the report.
(??) Does FR support unicode (Skript, memo,userfunction, ...)
To support the manor languages english, french and english I use an ANSI-Kofigurationfile to translate the memo.text.
It's running fine. (??) My Questions:
Is FR support WideString? Because, I've got the answer, that this class is unknown.
Which class have I to use instead of TIniFile?
How do I have to implement the userfunctions to support the unicode (widestring?)
Thank you in anticipation
I've implemented FR in an application, which support different languages as english, german... chinese... russian and so on. Now I have to support chinese.... also inside the report.
(??) Does FR support unicode (Skript, memo,userfunction, ...)
To support the manor languages english, french and english I use an ANSI-Kofigurationfile to translate the memo.text.
procedure LoadSetMemo( MemoName : string; Sprache : string;  Ini  : TIniFile; Component : TfrxComponent);
var
  iniString  : string;     Â
begin                         Â
  iniString:= Ini.ReadString('MEMO_'+Sprache,MemoName+'.Text','');         Â
  if iniString <>'<<NULL>>' then TfrxMemoView(Component.FindObject(MemoName)).Text :=iniString;         Â
end;
It's running fine. (??) My Questions:
Is FR support WideString? Because, I've got the answer, that this class is unknown.
Which class have I to use instead of TIniFile?
How do I have to implement the userfunctions to support the unicode (widestring?)
Thank you in anticipation